home *** CD-ROM | disk | FTP | other *** search
- on new me
- set the visible of sprite the currentSpriteNum to 1
- set the visible of sprite (the currentSpriteNum + 1) to 0
- set the visible of sprite (the currentSpriteNum + 2) to 0
- set the visible of sprite (the currentSpriteNum + 3) to 0
- set the visible of sprite (the currentSpriteNum + 4) to 0
- set the visible of sprite 71 to 1
- end
-
- on mouseEnter me
- set the visible of sprite (the currentSpriteNum + 1) to 1
- set the visible of sprite (the currentSpriteNum + 2) to 1
- end
-
- on mouseLeave me
- set the visible of sprite (the currentSpriteNum + 1) to 0
- set the visible of sprite (the currentSpriteNum + 2) to 0
- set the visible of sprite (the currentSpriteNum + 3) to 0
- end
-
- on mouseDown
- set the visible of sprite 52 to 0
- set the visible of sprite 57 to 0
- set the visible of sprite 66 to 0
- set the visible of sprite 71 to 0
- set the visible of sprite (the currentSpriteNum + 3) to 1
- updateStage()
- end
-
- on mouseUp
- set the visible of sprite (the currentSpriteNum + 3) to 0
- set the visible of sprite (the currentSpriteNum + 4) to 1
- end
-
- on getBehaviorDescription
- return "Hilite the next two sprites on the stage, and #3 on MouseDown. On mouseup, set one item active."
- end
-
- on getPropertyDescriptionList
- set p_list to [#MouseCommand: [#format: #string, #comment: "On mouseclick execute this", #default: "beep"]]
- return p_list
- end
-